0f298cf48e43ce64b5229afd63c68a3a1a94f60e,core/java/src/freenet/support/CPUInformation/VIAInfoImpl.java,VIAInfoImpl,identifyCPU,#,40
Before Change
private synchronized static void identifyCPU()
{
if(CPUID.getCPUFamily() == 6){
isC3Compatible = true; // Possibly not optimal
switch(CPUID.getCPUModel()){
case 5:
After Change
{
// http://en.wikipedia.org/wiki/Cpuid
String modelString = null;
int family = CPUID.getCPUFamily();
int model = CPUID.getCPUModel();
if (family == 15) {
family += CPUID.getCPUExtendedFamily();
model += CPUID.getCPUExtendedModel() << 4;
}